home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-02-05 | 368 b | 16 lines | [TEXT/MSCT] |
- //
- // Logging.M1S
- //
- // Write date and time and the full job file path to a log file.
- // This example always writes to the 'hard coded' file MSCOUTLG.TXT
- // We do not use the action point 'Output To File' feature
- //
- d = DATE()
-
- WRITE "MSCOUTLG.TXT",
- MID(d,5,2) + "/" + MID(d,7,2) + "/" + LEFT(d,4)
- + " "
- + MID(d,9,2) + ":" + MID(d,11,2)
- + " - "
- + it.CODE
-